home *** CD-ROM | disk | FTP | other *** search
/ PC World Multimedia Live! 1997 June / Multimedia Live (PC World)(June 1997 - Volume 2.12).ISO / sharware / tools / hj-ins~1 / exampl~1.scr < prev    next >
Text File  |  1996-12-28  |  3KB  |  98 lines

  1. <hide label>
  2. <hide editbox>
  3.  
  4. <set title>
  5. Example1
  6.  
  7. <wait message>
  8. Welcome to this first script example. 
  9. It is highly recommended that while executing these examples, you have a printed version of this script with you to maximize your learning.
  10. Press 'Next' to continue.
  11.  
  12. <set label>
  13. this is the label
  14.  
  15. <set editbox>
  16. this is the editbox
  17.  
  18. <set title>
  19. This is the Title
  20.  
  21. <wait message>
  22. In this first example, the controlling of the screen objects is demonstrated. 
  23. The screen objects are: 
  24. the title, the text-area, the label, the editbox, the next-button and the quit button.
  25. >> THIS IS THE TEXT AREA. <<
  26.  
  27. <set title>
  28. Example1
  29.  
  30. <wait message>
  31. The commands <hide label> and <hide editbox> make the label and editbox invisible.
  32.  
  33. <hide label>
  34. <hide editbox>
  35.  
  36. <wait message>
  37. You can show them again by the commands <set label> and <set editbox> which both require a second (data) line which contains the text. These commands automatically make the object visible. <set editbox> automatically makes the editbox non-readonly (or editable).
  38.  
  39. <set label>
  40. This is the text for the label
  41.  
  42. <set editbox>
  43. Hi there!
  44.  
  45. <wait message>
  46. You can make the editbox read-only by the two script lines:
  47. '<readonly editbox>'
  48. 'true '
  49. and non read-only by the lines:
  50. '<readonly editbox>'
  51. 'false'
  52.  
  53. <readonly editbox>
  54. true
  55.  
  56. <wait message>
  57. Now the editbox is readonly. Try to change its contents.
  58.  
  59. <wait message>
  60. The title can be changed by <set title> and hidden by <hide title>. First a demonstration of <hide title>.
  61.  
  62. <hide title>
  63.  
  64. <wait message>
  65. Now <set title> will be demonstrated.
  66.  
  67. <set title>
  68. This is a new title
  69.  
  70. <wait message>
  71. The command <wait button> causes the install program to wait for the user to press it. Also the button will be set with the text on the next script line. Press 'Next' to see this command in action.
  72.  
  73. <set title>
  74. Example 1
  75.  
  76. <hide editbox>
  77. <hide label>
  78.  
  79. <set message>
  80. Now the button text has changed. 
  81.  
  82. <wait button>
  83. Whatever
  84.  
  85. <wait message>
  86. The 'Quit' button can not be controlled by the script. The user has always the possibility to abort the installation process by pressing this button.
  87.  
  88. <wait message>
  89. The commands for the text area (which contains this text you are reading now) are '<wait message>' which displays the message and waits for the button to be clicked, and '<set message>' which just sets the message without waiting.
  90.  
  91. <set message>
  92. This concludes example1. 
  93. You can now proceed with example 2.
  94.  
  95. <wait button>
  96. >> Finish <<
  97.  
  98. <end>